Could you elaborate a little bit the question?
if what you are looking for is to instanciate another controller to use it I discovered that you can do it the usual way:
$indexController = new IndexController();
$indexController->callinganAction();
but of course, calling it this way does not reproduce the entire dispatch process, only calls the method and returns the results.